【Blockchain 笔记】区块链的环境搭建

记录一下

安装 metamask

Firefox 或者 Chrome 安装插件 metamask

安装 npm

Win 10 下的安装要求就一点,nodejs 的版本:(7.1 < version < 12),不然有一些组件的代码不支持

Ubuntu 16.04 默认的 npm 版本是 3.5.2 的,就导致没法和 nodejs 兼容

所以我们要换一种方式安装 npm 和 nodejs

1
2
curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
apt-get install -y nodejs

这样就安装完 npm 和 nodejs 了,之后输入该命令进行换源:

1
npm config set registry https://registry.npm.taobao.org

之后可以安装 nrm 进行便捷换源

安装 remix-ide

Ubuntu 16.04 输入如下命令:

1
npm install -g remix-ide --unsafe-perm=true --allow-root

windows 只要 nodejs 版本对即可(7.1 < version < 12)

1
npm install -g remix-ide

启动的时候用该命令即可:

1
remix-ide

访问端口要注意,开的是 8080 端口,而且要加 index 后缀:

1
http://localhost:8080/index

安装 ganache-cli

区块链的测试节点

1
npm install -g ganache-cli

安装 geth

直接去官网下载:https://geth.ethereum.org

文章目录
  1. 1. 安装 metamask
  2. 2. 安装 npm
  3. 3. 安装 remix-ide
  4. 4. 安装 ganache-cli
  5. 5. 安装 geth
|